Platform Explorer / Nuxeo Platform 2023.9

Component org.nuxeo.ecm.quota.core.types

Resolution Order

714
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Contributions

XML Source

<?xml version="1.0" encoding="UTF-8"?>
<component name="org.nuxeo.ecm.quota.core.types">

  <extension target="org.nuxeo.ecm.core.schema.TypeService" point="schema">

    <schema name="documents_count_statistics" prefix="dcs"
      src="schemas/documents_count_statistics.xsd"/>

    <schema name="documents_size_statistics" prefix="dss"
      src="schemas/documents_size_statistics.xsd"/>

    <schema name="quota_heaviest_containers_cv" prefix="quota_heaviest_containers_cv"
      src="schemas/quota_heaviest_containers_cv.xsd"/>

  </extension>

  <extension target="org.nuxeo.ecm.core.schema.TypeService" point="doctype">

    <facet name="DocumentsCountStatistics">
      <schema name="documents_count_statistics" />
    </facet>

    <facet name="DocumentsSizeStatistics">
      <schema name="documents_size_statistics" />
    </facet>

    <doctype name="quota_heaviest_containers_cv" extends="Document">
     <schema name="quota_heaviest_containers_cv"/>
    </doctype>

  </extension>

</component>